.discord-bots-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.discord-bots {
  position: relative;
  width: 450px; /* set the width to a fixed value */
  height: 570px; /* set the height to a fixed value */
  margin: 1%;
  border-radius: 15px;
  padding: 10px;
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #4b3c5f 2%, #00363f 100%);
  background-image: -webkit-linear-gradient(45deg, #4b3c5f 2%, #00363f 100%);
  background-image: linear-gradient(165deg, #4b3c5f 2%, #00363f 100%);
  box-shadow: 0 0 5px rgb(0, 0, 0);
  z-index: 3;
  box-sizing: border-box;
  overflow: hidden;
  animation-name: bounce;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Media query for screens smaller than 768px */
@media (max-width: 767px) {
  .discord-bots-container {
    flex-direction: column;
  }
  
  .discord-bots {
    width: 450px;
    margin: 3% auto;
  }
}


@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.discord-bots:before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  z-index: -1;
  animation-name: spin;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.discord-bots:after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  border-radius: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  z-index: -1;
  animation-name: spin-reverse;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}


/* Icon & Text Size and Designs */
.discord-bots .discord-bots-icon {
  color: hsl(0, 0%, 100%);
  font-size: 40px;
  text-align: center;
  text-shadow: 0 0 2px rgb(0, 217, 255, 1);
}
  
.discord-bots .discord-bots-info .bot-name{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
  text-shadow: 0 0 1px rgb(0, 217, 255, 1);
  color: #ffffff;
}
  
.discord-bots .discord-bots-info p{
  font-size: 11.5px;
  color: white;
  box-shadow: #161616;
  font-weight: 300;
  text-align: left;
  text-shadow: 0 0 2px rgb(0, 217, 255, 1);
  margin-top: 10px;
}

.discord-bots-description-guide {
  font-size: 11.5px;
  color:rgb(255, 255, 255);
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  background-image: linear-gradient(to bottom right, rgba(255,255,255,0.4), rgba(255,255,255,0.2)); /* Glass Color Box P2 */
}

.discord-bots-description-size {
  font-size: 11px;
  color: rgb(255, 255, 255);
  font-weight: 300;
  text-shadow: 0 0 2px rgb(0, 217, 255, 1);
}

/* BOXES DESIGN */
.discord-bots-price { /* Price Placement */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.discord-bots-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: white;
}
  
.discord-bots-color-price .discord-bots-color-option .discord-bots-color {
  font-size: 18px;
  font-weight: 100;
  color: #333;
  margin-right: 8px;
}

.discord-bots-color-option .discord-bots-circles{
  display: flex;
}
  
.discord-bots-color-price .discord-bots-price .discord-bots-price-num {
  font-size: 13px;
  padding: 5px;
  padding-left: 5px;
  border-radius: 5px;
  width: 60px;
  text-align: center;
  box-shadow: 0 0 3px #fffffe;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 400;
  color: #ffc400;
  text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
}
  
.discord-bots-price-plan{
  font-size: 11px;
  position: absolute;
  top: 55px; /* Letter Tag Position */
  right: 30px; /* Letter Tag Position */
  font-weight: 300;
  color: #6fee07;
}

.discord-bots-price-description {
  font-size: 13px;
  position: absolute;
  top: 508px; /* Letter Tag Position */
  right: 160px; /* Letter Tag Position */
  font-weight: 300;
  color: #ffc400;
  text-shadow: 0 0 5px #000000;
}

/*Discord Buttons design*/
.discord-bots .button {
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 45px; /* Button Size */
  width: 95%; /* Button Size */
  bottom: 8px; /* Button Position */
  right: 11px; /* Button Position */
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(255, 255, 255, 1),
  0 2px 15px rgba(0, 0, 0, 0.6);
}

.discord-bots .button .button-layer {
  position: absolute;
  height: 100%;
  width: 290%;
  left: -100%;
  background: #2c2d44;
  background-image: -moz-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: -webkit-linear-gradient(45deg, #3f3251 2%, #002025 100%);
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
  box-shadow: 0 0 2px rgb(255, 255, 255),
  0 0 5px rgb(0, 0, 0);
  transition: all 0.4s ease;
}

.discord-bots .button:hover .button-layer {
  background: linear-gradient(45deg, #5f4b7a 30%, #014b57 100%);
}

.discord-bots .button button {
  position: relative;
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}

/* Disabled Buttons */
.discord-bots .button-disabled {
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 45px; /* Button Size */
  width: 95%; /* Button Size */
  bottom: 8px; /* Button Position */
  right: 11px; /* Button Position */
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 0 3px #000000;
}

.discord-bots .button-disabled button {
  position: relative;
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  cursor: not-allowed;
}

.discord-bots .button-disabled .button-layer {
  position: absolute;
  height: 100%;
  width: 290%;
  left: -100%;
  background: transparent;
  background-image: -moz-linear-gradient(45deg, #771c05 2%, #330800 100%);
  background-image: -webkit-linear-gradient(45deg, #771c05 2%, #330800 100%);
  background-image: linear-gradient(45deg, #771c05 2%, #330800 100%);
  transition: all 0.4s ease;
}


.discord-bots .button-disabled:hover .button-layer {
  left: 0;
}
/* End Code */

.note {
  font-size: 12px; /* adjust the font size as needed */
  font-weight: bold; /* add bold style to the text */
  text-shadow: 0 0 2px #000000;
  box-shadow: 0 0 5px #ffffff; /* Glass Color Box P1 */
  background-image: linear-gradient(to bottom right, rgba(255,255,255,0.4), rgba(255,255,255,0.2)); /* Glass Color Box P2 */
}

.note i {
  margin-right: 5px; /* add some space between the icon and the text */
}

.note2 {
  font-size: 11px; /* adjust the font size as needed */
  font-weight: bold; /* add bold style to the text */
  text-shadow: 0 0 2px #000000;
  border-radius: 2px;
  content: "";
  background: linear-gradient(
    to right,
    transparent 0%,
    #08b3d1 25%,
    transparent 50%,
    #08b3d1 75%,
    transparent 100%
  );
  background-size: 200% 100%; /* Double the background width for shimmer effect */
  animation: shimmer 10s linear infinite; /* Apply the animation */
}

.note .ii {
  margin-right: 5px; /* add some space between the icon and the text */
}

.clear {
  font-size: 12px; /* adjust the font size as needed */
  font-weight: bold; /* add bold style to the text */
  border-radius: 2px;
  text-shadow: 0 0 2px #000000;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), rgba(255,255,255,0.2)); /* Glass Color Box P2 */
  content: "";
  background: linear-gradient(
    to right,
    transparent 0%,
    #08b3d1 25%,
    transparent 50%,
    #08b3d1 75%,
    transparent 100%
  );
  background-size: 200% 100%; /* Double the background width for shimmer effect */
  animation: shimmer 10s linear infinite; /* Apply the animation */
}

/* Discord Tags Area */
.text-prefix-container {
  display: flex;
  justify-content: center; /* Center items horizontally */
}

.text-prefix {
  font-size: 14px; /* adjust the font size as needed */
  font-weight: 300; /* add bold style to the text */
  width: 200px;
  height: 100%;
  margin: 5px;
  margin-top: 5px;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)); /* Glass Color Box P2 */
  border-radius: 5px;
  text-align: center;
  text-shadow: 0 0 2px rgb(0, 217, 255, 1);
}

.bx-plus-medical, 
.bxs-trash-alt, 
.bx-message-rounded-dots,
.bx-refresh,
.bx-cube-alt,
.bx-search-alt,
.bx-terminal,
.bx-help-circle { /* Filter Bot Commands Icons*/
  font-size: 35px;
  margin: 15px;
  text-shadow: 0 0 5px rgb(0, 217, 255, 1);
}

.command-container {
  display: flex;
  justify-content: center; /* Center items horizontally */
}

/*  Prefix Box Style */
.command {
  font-size: 11px; /* adjust the font size as needed */
  font-family: 'Courier New', Courier, monospace;
  width: 300px;
  height: 35px;
  margin: 5px;
  margin-top: 0px;
  border-radius: 5px;
  text-align: center;
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)); /* Glass Color Box P2 */
  border: 1px solid #ffffffb6;
  display: flex; /* Use Flexbox */
  justify-content: center; /* Horizontally center content */
  align-items: center; /* Vertically center content */
}


.Tags-container {
  display: flex;
  justify-content: center; /* Center items horizontally */
}

.Tags {
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
  background-image: linear-gradient(to bottom right, rgba(226, 17, 17, 0.5), rgba(236, 12, 12, 0.5));
  content: "";
  background: linear-gradient(
    to right,
    transparent 0%,
    #a0a0a0 25%,
    transparent 50%,
    #a0a0a0 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 20s linear infinite;
  border: 2px solid #ffffff75;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  margin-right: 5px;
}

.discord-bots-description-custom {
  font-size: 12.5px;
  color:rgb(255, 255, 255);
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  background-image: linear-gradient(to bottom right, rgba(255,255,255,0.4), rgba(255,255,255,0.2)); /* Glass Color Box P2 */
}

/* Underline Design  */
#sep-prefix-container {
  position: relative;
  padding-top: 10px;
  overflow: hidden;
}

#sep-prefix-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #ffffff 25%,
    transparent 50%,
    #ffffff 75%,
    transparent 100%
  );
  background-size: 200% 100%; /* Double the background width for shimmer effect */
  animation: shimmer 10s linear infinite; /* Apply the animation */
}

/* Discord Seperation */
#sep-discord-container {
  position: relative;
  padding-top: 10px;
  overflow: hidden;
}

#sep-discord-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #08b3d1 25%,
    transparent 50%,
    #08b3d1 75%,
    transparent 100%
  );
  background-size: 200% 100%; /* Double the background width for shimmer effect */
  animation: shimmer 10s linear infinite; /* Apply the animation */
}